home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 010a / cliptree.zip / MAKEFILE.RMK < prev    next >
Text File  |  1993-02-07  |  895b  |  32 lines

  1. /*
  2. * Filename..: Makefile.rmk           Purpose: 
  3. * Created by: Kevin S. Gallagher    Language: Clipper 5.01
  4. * Date......: 02/06/93
  5. *
  6. * CLIPWARN by:Don Caton is a interface to the clipper compiler. If you do not
  7. * have it and can not find it on a BBS, (I got it from GRUMPFISH BBS) simply
  8. * replace it with CLIPPER.
  9. *
  10. * Savearr.prg   - from nanfor.lib              -  Public Domain
  11. * Scrolbar.prg  - from Nantucket sample source -  Computer A.(c) 1993
  12. *
  13. */
  14.  
  15. OBJS  = gpath.obj scrolbar.obj misc.obj savearr.obj errsave.obj
  16. CLPS  = clipwarn
  17. FILES = $<
  18. FLAGS = /m /n /w /a /beep /log:error.err
  19.  
  20.  
  21. VTREE.EXE:   $(OBJS)
  22.         BLINKER @linkfile
  23.  
  24. .prg.obj:
  25.         $(CLPS) $(FILES) $(FLAG)
  26.  
  27. gpath.obj       : gpath.prg include1.h
  28. scrolbar.obj    : scrolbar.prg include1.h
  29. misc.obj        : misc.prg include1.h
  30. savearr.obj     : savearr.prg
  31. errsave.obj     : errsave.prg
  32.